/* Hero section */
.mk-hero {
    width: 100%;
    padding: 5rem 1rem;
    /* background removed -> handled by wrapper */
    position: relative;
    overflow: hidden;
}

/* Main container */
.mk-hero-content {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3.5rem;
    animation: fadeInUp 1s ease;
    position: relative;
    left: -50px;
}

/* Flex items equal width */
.mk-hero-image,
.mk-hero-text {
    flex: 1;
}

/* Default order for desktop */
.mk-hero-image {
    order: 1;
}

.mk-hero-text {
    order: 2;
}

/* IMAGE */
.mk-hero-image img {
    width: 100%;
    max-width: 430px;
    filter: drop-shadow(0 0 18px rgba(255, 215, 0, 0.35));
    transition: transform 1s ease;
}

/* TEXT CONTENT */
.mk-hero-text h1 {
    font-size: 2.7rem;
    font-weight: 700;
    color: var(--text);
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.25);
}

.mk-hero-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.65;
    margin: 1rem 0;
}

/* BADGES */
.mk-badges {
    display: flex;
    gap: 1rem;
    margin: 1.8rem 0;
}

.mk-badges span {
    background: rgba(255, 215, 0, 0.12);
    padding: 0.55rem 1.2rem;
    border-radius: 50px;
    color: #FFD700;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-shadow: 0 0 6px rgba(255, 215, 0, 0.4);
}

/* CTA BUTTON */
.mk-btn {
    display: inline-block;
    margin-top: 30px;
    background: linear-gradient(90deg, var(--accent), var(--accent-hover));
    color: #000;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.mk-btn:hover {
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
    transform: translateY(-4px);
}

/* ------------------------------------------------------ */
/* 🔥🔥 RESPONSIVE — IMAGE ALWAYS TOP ON MOBILE 🔥🔥 */
/* ------------------------------------------------------ */

@media (max-width: 850px) {

    .mk-hero-content {
        flex-direction: column;
        /* normal column */
        text-align: center;
        gap: 2.5rem;
        left: 0;
    }

    /* FORCE ORDER — image always top */
    .mk-hero-image {
        order: 1 !important;
    }

    .mk-hero-text {
        order: 2 !important;
    }

    .mk-hero-image img {
        max-width: 300px;
        width: 100%;
        margin: auto;
        display: block;
    }

    .mk-hero-text {
        width: 100%;
        padding: 0 15px;
    }

    .mk-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* LIGHT MODE FIX */
[data-theme="light"] .mk-hero-text h1 {
    color: #000;
    text-shadow: none;
}

[data-theme="light"] .mk-hero-text p {
    color: #333;
}

[data-theme="light"] .mk-badges span {
    color: #B8941F;
    background: rgba(212, 175, 55, 0.18);
}